home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / INFO < prev    next >
Text File  |  1994-08-05  |  3KB  |  67 lines

  1.  
  2.                                   LEDA
  3.  
  4.              A Library of Efficient Data Types and Algorithms
  5.  
  6.  
  7.                              Stefan Naeher
  8.                    Max-Planck-Institut fuer Informatik
  9.                   Im Stadtwald, 6600 Saarbruecken, FRG     
  10.  
  11.                         (stefan@mpi-sb.mpg.de)
  12.   
  13.  
  14. LEDA is a library of the data types and algorithms of combinatorial computing. 
  15. The main features are:
  16.  
  17. 1.  LEDA provides a sizable collection of data types and algorithms in a form 
  18.     which allows them to be used by non-experts. In the current version, this
  19.     collection includes most of the data types and algorithms described in the 
  20.     text books of the area. 
  21.  
  22. 2.  LEDA gives a precise and readable specification for each of the data types 
  23.     and algorithms mentioned above.  The specifications are short (typically, 
  24.     not more than a page), general (so as to allow several implementations), 
  25.     and abstract (so as to hide all details of the implementation). 
  26.  
  27. 3.  For many efficient data structures access by position is important. In 
  28.     LEDA, we use an item concept to cast positions into an abstract form. We 
  29.     mention that most of the specifications given in the LEDA manual use this 
  30.     concept, i.e., the concept is adequate for the description of many data 
  31.     types. 
  32.  
  33. 4.  LEDA contains efficient implementations for each of the data types, e.g., 
  34.     Fibonacci heaps for priority queues, red-black trees and dynamic perfect 
  35.     hashing for dictionaries, ...
  36.  
  37.  
  38. 5.  LEDA contains a comfortable data type graph. It offers the standard 
  39.     iterations such as ``for all nodes v of a graph G do'' or ``for all 
  40.     neighbors w of v do'', it allows to add and delete vertices and edges 
  41.     and it offers arrays and matrices indexed by nodes and edges,...  
  42.     The data type graph allows to write programs for graph problems in a 
  43.     form close to the typical text book presentation.
  44.  
  45.  
  46. 6.  LEDA is implemented by a C++ class library. It can be used with allmost
  47.     any C++ compiler (cfront, g++, borland, zortech).
  48.  
  49.  
  50. 7.  LEDA is not in the public domain, but can be used freely for research 
  51.     and teaching. A commercial license is available for 2000 DM.
  52.  
  53.  
  54. 8.  LEDA is available by anonymous ftp from 
  55.  
  56.     ftp.mpi-sb.mpg.de        /pub/LEDA
  57.     ftp.cs.uni-sb.de         /pub/LEDA
  58.     ftp.th-darmstadt.de      /pub/programming/languages/C++/class-libraries/LEDA
  59.  
  60.     Files:
  61.  
  62.     INFO                     this file
  63.     LEDA-<version>.tar.Z     UNIX (tar + compress)     
  64.     LEDA-<version>.tgz       UNIX (tar + gzip)
  65.     LEDA-<version>.zip       DOS  (zip)
  66.  
  67.